From 5c3d22a029278794ff92997554eee021245df93b Mon Sep 17 00:00:00 2001 From: Aaron Schulz Date: Tue, 4 Oct 2016 13:51:03 -0700 Subject: [PATCH] Make DatabaseMysqlBase use connLogger for connection errors Previously, they went to queryLogger, which is not the proper log. Change-Id: Ifeea2261afc9572bf613a96306537f564b3e95d7 --- includes/libs/rdbms/database/DatabaseMysqlBase.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/includes/libs/rdbms/database/DatabaseMysqlBase.php b/includes/libs/rdbms/database/DatabaseMysqlBase.php index d654429317..f504ec4d91 100644 --- a/includes/libs/rdbms/database/DatabaseMysqlBase.php +++ b/includes/libs/rdbms/database/DatabaseMysqlBase.php @@ -129,14 +129,14 @@ abstract class DatabaseMysqlBase extends Database { if ( !$error ) { $error = $this->lastError(); } - $this->queryLogger->error( + $this->connLogger->error( "Error connecting to {db_server}: {error}", $this->getLogContext( [ 'method' => __METHOD__, 'error' => $error, ] ) ); - $this->queryLogger->debug( "DB connection error\n" . + $this->connLogger->debug( "DB connection error\n" . "Server: $server, User: $user, Password: " . substr( $password, 0, 3 ) . "..., error: " . $error . "\n" ); -- 2.20.1